home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Demos / Bowers Development / AppMaker 2.1.sit / AppMaker 2.1 / Examples / Windows MFC / MFC generated / mainfrm.h < prev    next >
Encoding:
Text File  |  1996-01-01  |  683 b   |  32 lines

  1. // mainfrm.h -- Interface for the application frame window in SDI app
  2. // Created 01/01/95 12:01 PM by AppMaker
  3.  
  4. class CMainFrame : public CFrameWnd
  5. {
  6. public:
  7.     virtual ~CMainFrame();
  8. #ifdef _DEBUG
  9.     virtual void AssertValid() const;
  10.     virtual void Dump(CDumpContext& dc) const;
  11. #endif
  12.  
  13. // Implementation 
  14. protected:
  15.     CMainFrame();                
  16.     DECLARE_DYNCREATE(CMainFrame)
  17.  
  18.     // Member variables
  19.     CStatusBar    m_StatusBar;
  20.     CToolBar        m_ToolBar;
  21.  
  22.     // Message maps
  23. protected:
  24.     DECLARE_MESSAGE_MAP()
  25.  
  26.     //{{AFX_MSG(CMainFrame)
  27.     // Handlers within the section marked by {{AFX_MSG and }}AFX_MSG
  28.     // are maintained by ClassExpress.    
  29.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  30.     //}}AFX_MSG
  31. };
  32.